home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1991 / 06 / winclass.mak < prev   
Text File  |  1991-06-01  |  595b  |  41 lines

  1. .AUTODEPEND
  2.  
  3. #        *Translator Definitions*
  4. CC = bccx +WINCLASS.CFG
  5. TASM = TASM
  6. TLINK = tlink
  7. TLIB = tlib
  8.  
  9.  
  10. #        *Implicit Rules*
  11. .c.obj:
  12.   $(CC) -c {$< }
  13.  
  14. .cpp.obj:
  15.   $(CC) -c {$< }
  16.  
  17. #        *List Macros*
  18.  
  19.  
  20. lib_dependencies =  \
  21.   winclass.obj
  22.  
  23. #        *Explicit Rules*
  24. winclass.lib: winclass.cfg $(lib_dependencies)
  25.   $(TLIB) winclass.lib -+winclass.obj
  26.  
  27. #        *Individual File Dependencies*
  28. winclass.obj: winclass.cpp 
  29.  
  30. #        *Compiler Configuration File*
  31. winclass.cfg: winclass.mak
  32.   copy &&|
  33. -v
  34. -W
  35. -H=WINCLASS.SYM
  36. -IC:\BORLANDC\INCLUDE
  37. -LC:\BORLANDC\LIB
  38. | winclass.cfg
  39.  
  40.  
  41.